I installed bottle on python3.4 with pip install. In terminal, when I do:
$ python3.4 >>>import bottle # shows no import error >>>
but when I do it in PyCharm, it says “import bottle ImportError: No module named ‘bottle’”
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
in your PyCharm project:
- press Ctrl+Alt+s to open the settings
- on the left column, select Project Interpreter
- on the top right there is a list of python binaries found on your system, pick the right one
- eventually click the
+button to install additional python modules - validate

Method 2
In some cases no “No module …” can appear even on local files. In such cases you just need to mark appropriate directories as “source directories”:


Method 3
The settings are changed for PyCharm 5+.
- Go to File > Default Settings
- In left sidebar, click Default Project > Project Interpreter
- At bottom of window, click + to install or – to uninstall.
- If we click +, a new window opens where we can decrease the results by entering the package name/keyword.
- Install the package.
- Go to File > Invalidate caches/restart and click Invalidate and Restart to apply changes and restart PyCharm.
Method 4
I am using Ubuntu 16.04. For me it was the incorrect interpretor, which was by default using the virtual interpretor from project.
So, make sure you select the correct one, as the pip install will install the package to system python interpretor.
Method 5
pycharm 2019.3 ,my solution is below:

Method 6
I had virtual env site package problem and this helped me, maybe it will help you too

Method 7
In the case where you are able to import the module when using the CLI interpreter but not in PyCharm, make sure your project interpreter in PyCharm is set to an actual interpreter (eg. /usr/bin/python2.7) and not venv (~/PycharmProject/venv/…)
Method 8
I had the same problem, I tried all fixes like installing from the project interpreter and installing from python console, nothing worked. What worked was just going to the project folder from the terminal and installing it from there.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0
