Reputation: 19395
Hi I have both Pycharm and Anaconda installed on my computer and I would like to upgrade the package Pandas to the latest version (i have the 0.14 version)
Unfortunately my computer has strong firewall restrictions and I am not able to use the internet to update it. I can download the source files though.
Is there a way to install the package manually? I use win 7 64 by the way
Many thanks!!!
Upvotes: 1
Views: 1408
Reputation: 91620
If you are using conda, use the --offline
flag when installing the conda package that you downloaded, like conda install --offline pandas-0.15.2-np19py27.tar.bz2
.
Upvotes: 1