将 Conda 软件包安装到 Google Colab



我尝试将软件包从anaconda安装到google的colab。

但它不起作用。整件事都是巫毒魔法。

以下代码位于一个单元格中。

笔记本的单元格:

!wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
!bash Miniconda3-latest-Linux-x86_64.sh -b -f -p /usr/local/
!rm Miniconda3-latest-Linux-x86_64.sh
!conda install -y --prefix /usr/local/ ujson aiohttp tqdm
import sys
os.environ['PYTHONPATH'] = "/usr/local/miniconda3"
os.environ['PATH'] = '/usr/local/miniconda3/bin:' + os.environ['PATH']
sys.path.append('/usr/local/lib/python3.6/site-packages/')
import ujson

结果:

ModuleNotFoundError: No module named 'ujson'

如果我使用"!bash"进入bash shell,然后运行"bash's"python,我可以在该python中导入ujson。但是,如果我直接在"笔记本"的 python 中导入 ujson,它不起作用。

这里的方法似乎不再有效

  • 如何在colab.research上通过conda建立图书馆?
  • 与Google Colab兼容的最新conda版本建议以下内容,现在不起作用:
!wget -c https://repo.anaconda.com/miniconda/Miniconda3-4.5.4-Linux-x86_64.sh
!chmod +x Miniconda3-4.5.4-Linux-x86_64.sh
!bash ./Miniconda3-4.5.4-Linux-x86_64.sh -b -f -p /usr/local
!conda install -q -y --prefix /usr/local ujson
import sys
sys.path.append("/usr/local/conda/lib/python3.6/site-packages/")
print(ujson.dumps({1:2}))

最新的黑客攻击是什么?

必须解决 2 个问题:

  • UJSON通常会升级到Python 3.7,必须避免这种情况。
  • Conda 库的路径已更改,必须更新它。

对于 1,您需要将python=3.6添加到conda install.

对于 2,您需要添加路径以/usr/local/lib/python3.6/site-packages

这是新代码

# same
!wget -c https://repo.anaconda.com/miniconda/Miniconda3-4.5.4-Linux-x86_64.sh
!chmod +x Miniconda3-4.5.4-Linux-x86_64.sh
!bash ./Miniconda3-4.5.4-Linux-x86_64.sh -b -f -p /usr/local
# update 1
!conda install -q -y --prefix /usr/local python=3.6 ujson
# update 2
import sys
sys.path.append('/usr/local/lib/python3.6/site-packages')
# test it
import ujson
print(ujson.dumps({1:2}))

在 google colab Jupyter IDE 中,尝试执行:

!pip install ujson

这以前对我有用。让我知道它现在是否有效。

#If 任何人想使用Google Collab实现,只需在编译其他单元格之前运行它

wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh

!chmod +x Miniconda3-py37_4.8.2-Linux-x86_64.sh

!bash ./Miniconda3-py37_4.8.2-Linux-x86_64.sh -b -f -p/usr/local 导入系统

sys.path.append('/usr/local/lib/python3.7/site-packages/'

相关内容

  • 没有找到相关文章

最新更新