https://www.orchest.io/ logo
Title
s

Sam Daniel

11/11/2022, 7:59 AM
Hi, I am totally new to Orchest. Is there any way I can install google-colab into a Python environment? I tried pip install but ended up getting this error.
note: This error originates from a subprocess, and is likely not a problem with pip.
      error: legacy-install-failure
      
      Ɨ Encountered error while trying to install package.
      ╰─> pandas
      
      note: This is an issue with the package mentioned above, not pip.
      hint: See above for output from the failure.
      [end of output]
  
  note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error
Tried reinstalling different versions of pandas too, but not helping. Can someone show me the way? Thank you
y

Yannick

11/11/2022, 9:08 AM
Hi @Sam Daniel šŸ‘‹! Sorry to hear that you are having troubles getting started.
I can install google-colab into a Python environment?
Are you simply running
pip install google-colab
? And another question, are you self-hosting the open source or are you using Orchest Cloud?
I've tried running
pip install google-colab
and the problem seems to be that it tries to install
pandas~=0.24.0
which fails because its wheel can't be build. You can fix either way: • If you maintain
google-colab
then you can change the requirements so that
pandas~=1.5
is used. Which should install just fine. • Use
mamba
to install
google-colab
so that it doesn't try and build `pandas`:
mamba install -y google-colab
s

Sam Daniel

11/11/2022, 10:11 AM
Thank you very much @Yannick.mamba install -y google-colab code worked. Btw I am using Orchest Cloud.
y

Yannick

11/11/2022, 10:18 AM
Awesome! Let me know in case you run into anything else šŸ˜‡
šŸ‘ 1