python-3.x Conda create卡在“解决 Package 规格”上

at0kjp5o  于 2022-12-15  发布在  Python
关注(0)|答案(3)|浏览(192)

I'm trying to create a Python 2.7 virtual environment with Anaconda so I can download some packages that are not compatible with Python 3.4. I'm working in Conda version 4.2.13.
When I type the command conda create -n chemistry python=2.7 anaconda the whole thing freezes at the solving package specifications stage.
Does anyone know what causes this or how I can go about fixing it?

cetgtptt

cetgtptt1#

今天我遇到了同样的问题,在更新了我的水蟒导航仪后,它得到了修复。
更新你的Anaconda Navigator也可以解决你的问题。

8i9zcol2

8i9zcol22#

Try this:

conda create -n chemistry python=2.7

The initial command you use will try to install a package named anaconda . If you want to specify the channel when installing packages,you can add -c <channel> .For example:

conda install -c conda-forge tqdm
x33g5p2x

x33g5p2x3#

有同样的问题,而我正试图安装一些软件包。我试图更新python,然后似乎都工作。尝试它conda安装python

相关问题