简体   繁体   中英

Anaconda PyPi Installation

I'm trying to install a package not build in conda on Python 3.5 but founded on PyPi: "Seasonal"

https://pypi.python.org/pypi/seasonal

So I think I just have to do that :

conda skeleton pypi seasonal
conda build seasonal
conda install --use-local seasonal

It worked for an other one, but here I have this error :

((env-smart-data)) smartdata@smartdata-VirtualBox:~/PycharmProjects/TimeSerie$ conda skeleton pypi seasonal
Warning, the following versions were found for seasonal
0.3.1
0.3.0
0.2.0
0.1.0
0.0.0
Using 0.3.1
Use --version to specify a different version.
Error: Could not parse url for seasonal: UNKNOWN

So conda can find it, but there is a problem .. Any ideas ?

I've seen that seasonal is build on a Python 2.7, so I've tested it on a virtual env with Python 2.7, but it's exactly the same

If you can find it on PyPi, then you can simply do this:

pip install seasonal

Since you have conda installed, pip called here is actually calling anaconda's pip . Thus it will automatically handle install path etc.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM