Reputation: 449
In my terminal, I typed: export PYTHONPATH="$PYTHONPATH:/usr/local/google_appengine:/usr/local/google_appengine/lib/:/usr/local/google_appengine/lib/yaml/"
and now my Pycharm isn't displaying any packages and libraries that I had previously.
All of my projects can still use the old libraries and packages that I had installed previously, but now I cannot install new ones, which is really strange.
This is the message that I receive:
When I click Install packaging tools, I get this error:
Upvotes: 3
Views: 4079
Reputation: 985
You installation of python is corrupted. Looks like your PATH variable took a beating in general, and now conda isn't properly recognized.
In this case, it is best to reinstall Anaconda with:
sudo rm -rf ~/Anaconda
bash Anaconda-latest-Linux-x86_64.sh
Upvotes: 2