python 2 环境创建及pip install + scipy bug解决

python 2 环境创建

一般在服务器创建环境:

conda create --prefix='/path/to/python' python=3.6.3

然而使用同样的方式,并不能创建python 2 的环境:

conda create --prefix='/path/to/python' python=2.7.10

会报错:

PackagesNotFoundError: The following packages are not available from current channels

这种bug产生的原因是:python 2 官方已经不维护了,conda默认channel检索不到python2.7导致,因此,需要自己找到可用的channel:
https://repo.anaconda.com/pkgs/free/
然后就可以根据系统获得最终url,比如我的是linux服务器,于是最终url是:
https://repo.anaconda.com/pkgs/free/linux-64/

于是,创建环境代码变更为:

conda create --prefix='/path/to/python' python=2.7.10 -c https://repo.anaconda.com/pkgs/free/linux-64/

完美解决,参考python=2.7-not available from current channels

“python setup.py egg_info” failed with error code 1

但是很神奇的是,这种做法创建的环境,后期在使用pip install xxx下载包的时候会出现这个bug:

"pip install unroll": "python setup.py egg_info" failed with error code 1

于是开始查询stack overflow,找到了一种解决方案(并不是赞同数最多的):

python -m pip install --upgrade pip

之后就可以自由下载包了~

cannot import name ‘imread‘ from ‘scipy.misc‘

另外,python 2版本无法下载imageio包,若想要使用imread类的话,版本高于1.2.0的scipy会报函数找不到的错误,因此需要把调整pillowscipy的版本:

pip install pillow==5.2.0
pip install scipy==1.1.0
#或 pip install scipy==1.0.0

参考解决ImportError: cannot import name ‘imread‘ from ‘scipy.misc‘

你可能感兴趣的:(python,开发语言)