new in python. I have python 2.7. I just installed a new module (beatifulsoup) from cmd in windows 7 which is correctly installed : When I enter the python consol from the cmd I can import succesfully bs4 without error. My problem is that I cannot import it when I am using Aptana studio. Or if I code it in sublimetext and save it as a py file, when I run it I get the error message "cannot import name beautifulsoup 4". I don't get why? Is it a problem of pydev environment on aptana? If yes how can I add modules to Aptana and sublimetext3 ?
cannot import name module with module correctly installed
316 views Asked by marko c. At
1
There are 1 answers
Related Questions in PYTHON-2.7
- Telnet function in Python
- symbol not found in flat namespace '__PyTrash_begin
- Python 2.7 requirements won't install without virtualenv
- Python search for the errors in the JSON
- spectrogram for a .cdf file
- SSL Error and InsecurePlatformWarning when installing packages using pip on Python 2.7
- Canonical way to ensure float point division across py2 and py3?
- Unable to execute Python Script directly
- Pip from Python 2.7.10 installed via pyenv-win cannot install any packages
- Arcpy: Python stops ExportToPDF through list after some iterations
- Python2 unable to pickle string
- Reading Excelsheets using openpyxl and Python
- How can I store a function in an array in python?
- " 'Word2Vec' object has no attribute 'load_parent_word2vec_format' " error
- How to execute a nodejs function from the python code?
Related Questions in SUBLIMETEXT3
- Sublime Text causing computer to crash (mouse being frozen and keys not being logged) due to fork bomb
- Sublime mysteriously stops indexing
- Commenting current line with shorcut CRTL+/ instead of block commenting
- How to show python docstring for installed libraries in sublime text
- Is there a way to make sublime as core.editor (git) on Mac
- Sublime don't want to find words with only a few letter match
- Sublime text snippet : how to define choices as value?
- Sublime Text has forgotten where to find openpyxl and I can't figure out how to teach it
- Sublime - PyCodeStyle - Line Length Property
- Sublime text disappearing on ubuntu subsytem for windows
- Sublime text 3 using 100% CPU on idle and with index set to false
- Live Reload sublime text 3 enable reload with delay 1500ms
- How scroll in sidebar keyboard Sublime Text
- How to modify a sublime-syntax file to include following lines in sytnax coloring?
- Can't Disable Vim Mode in Sublime Text Even After Editing Settings
Related Questions in APTANA
- Eclipse 2021-12 & Aptana Studio 3 Conflict
- Unable to run Aptana Studio 3 on Big Sur
- Unable to install Aptana Studio 3 on Eclipse jee-2020-03
- Aptana Studio not running anymore on Mac
- Multiple Java JDK versions, Aptana Studio 3, Mac OS
- Why do I get a run error from Aptana on Ubuntu 20.04
- Aptana 3 error on Catalina - legacy Java Runtime 6 required
- How do I configure Aptana 3 to run my Rails server in debug mode so it stops on breakpoints?
- How do I set the proper Ruby version for use with my Rails 5 project in Aptana 3?
- How do I configure Aptana 3 IDE to run rspec tests for my Rails project?
- How do I create a Rails run configuration on Aptana Studio 3?
- How do I configure a Rails server in Aptana Studio 3?
- How do I launch my Rails server in debug mode in Aptana Studio 3?
- Aptana Studio 3 won't launch. It's only seeing java 1.6 not 1.8
- Problem with "Syntax error: unexpected token 'let'
Related Questions in WINDOWS-7-X64
- In Windows 7 _ Is It Possible to widen the arrow button next to Switch Off button on Start Menu?
- Failed to create virtualenv or venv on certain Windows7 PC using Winpython 3.8.10 distribution
- My flutter app can't run on Windows 7 SP1 64bit
- Pythonw.exe version=36+ always failed and report appcrash report with ucrtbase.dll
- Issue with Task Scheduler starting Task Compability module
- when trying to run mysql shell 8 on windows 7 it throws api-ms-win-core-path-l1-1-0.dll missing
- photos won't appear ? on vs code 1.69 win 7
- VS Code not running windows 7 64bit
- Wireguard powershell script not working only on Windows 7, rest windows OS working fine
- Visual Studio cannot connect to Nuget.org on Windows 7
- update npm on windows 7
- Why MySql Load_File(TextFile) return BLOB string?
- Install superset on Windows 7 experienced through "build geo_hash" error
- error installing cypress on windows 64 with npm
- Error when making request: The request was aborted: Could not create SSL/TLS secure channel
Related Questions in PYTHON-IMPORT
- Python ModuleNotFoundError for command line tools built with setup.py
- How to import logsumexp from keras.backend?
- Python importing hierarchy failing
- Python pyinstaller ModuleNotFoundError even with hidden import
- Pyaudio installed with Conda but not found on Import
- Python relative imports do not work in VS Code but do in PyCharm
- Why doesn't 'import *' give me all modules?
- ModuleNotFoundError: No module named 'x' when trying to run my code
- Where is the top level module in python import tree? How to define it?
- Upgraded to Django 4.2, import storages module failed
- Python module not imported despite file being there
- Python in VSCode - PIP Error (cmd not found)
- Python import not working, even after creating __init__ in parent folders
- Relative Import: No Known Parent Package
- What is the benefit of using import X as X?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Are you trying to import like this:
from bs4 import BeautifulSoupIf not, try it that way. Hope this helps!
(Perhaps you should add your import statement to the question so we can see if there is a problem with the statement or if the issue resides somewhere else)