Reputation: 365
I just downloaded PyCharm the other day and wanted to download a few packages. I'm using Windows 10 with PyCharm 2016.2.2 and python 3.5.2. When I go to the available packages screen it continually states:
Error loading package list:pypi.python.org
I was just trying to download BeautifulSoup and I'm clearly missing something. Any help would be wonderful.
Upvotes: 15
Views: 71326
Reputation: 21
File -> Settings -> Python Interpreter -> Add package -> Manage repositories -> Set only "https://pypi.python.org/simple", as told by @Jee Mok, works fine for me.
Upvotes: 1
Reputation: 532
If you are using a Corporate license, make sure you are connected to your corporate VPN
Upvotes: 0
Reputation: 2400
All the above solution did not work for me, I had to manually install the package using proxy:
pip install -U <package_name> --user --proxy=<your proxy>
Upvotes: 0
Reputation: 45070
Update PyCharm January 2020 Build
If you are behind a proxy then
Upvotes: 5
Reputation: 39830
If you are running PyCharm on OSX behind a proxy you need to define proxy configuration the following should do the trick:
Upvotes: 0
Reputation: 405
I got the same problem and solution was that I got some other repositories added to repositories manager. So, make sure that you don't have anything extra then
https://pypi.python.org/simple at Repositories
Upvotes: 10
Reputation: 2550
I am behind a corporate firewall and had this problem. All I had to do was go to Settings/Appearance and Behavior/System Settings/HTTP Proxy
and check Auto-detect proxy settings
and it worked.
Upvotes: 34
Reputation: 19
First of all, I think you should use Default Preferences in File to install packages. Second, you should check "Manage Repositories" if there's any unavailable source.
Upvotes: 1
Reputation: 79
This was an issue this past summer: https://intellij-support.jetbrains.com/hc/en-us/community/posts/207207469-PyCharm-interpreter-can-t-find-new-packages
Have you tried pulling from http://pypi.python.org/simple/ ?
Upvotes: 0