问题
原环境为python3.8,为安装tensorflow 1* ,使用conda 创建python 3.7 的虚拟环境tensorflow1 。 激活虚拟环境后,python调用的仍为python 3.8。
问题如下: python路径正确
(tensorflow1) Rachel1900 (master
$ which python
/Users/Rachel1900/anaconda3/envs/tensorflow1/bin/python
但执行版本错误,且当前环境下库无法调用
(tensorflow1) Rachel1900 (master
$ python --version
Python 3.8.5
判断为python运行路径出错
尝试方案
conda deactivate 退出conda环境,重新进入需要的环境
多次尝试无果
解决方案
参考- Mac修改默认python版本 在~/.bash_profile 中增加虚拟环境的python路径alias python=“python-path” ,解决。具体步骤:
- 虚拟环境的python路径查找:
(tensorflow1) Rachel1900 (master
$ which python
/Users/Rachel1900/anaconda3/envs/tensorflow1/bin/python
- 在根目录下打开
~/.bash_profile
(tensorflow1) Rachel1900 (master
$ cd ~
(tensorflow1) Rachel1900 (master
$ open ~/.bash_profile
-
在配置文件增加alias python="/Users/Rachel1900/anaconda3/envs/tensorflow1/bin/python" -
保存文件后在terminal 运行
(tensorflow1) Rachel1900 (master
$ source ~/.bash_profile
- 检查python版本
(tensorflow1) Rachel1900 (master
$ python --version
Python 3.7.12
(tensorflow1) Rachel1900 (master
$ python -c"import sys; print(sys.executable)"
/Users/Rachel1900/anaconda3/envs/tensorflow1/bin/python
问题解决
参考
|