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
311 Views Asked by marko c. At
1
There are 1 best solutions below
Related Questions in PYTHON-2.7
- Initialize matrix
- Why is my program adding int as string (4+7 = 47)?
- How to save gensim LDA topics output to csv along with the scores?
- Update a text file with ( new words+ \n ) after the words is appended into a list
- Removing URL features from tokens in NLTK
- python, global name not defined
- Why does collections.OrderedDict use try and except to initialize variables?
- Invalid URL: No host supplied : error while using Request.get(url) in Python
- Python GUI application to copy files one location to another location
- Why I receive CERTIFICATE_VERIFY_FAILED from google adwords api?
- Excel worksheet to Numpy array
- Python datetime.now() with timezone
- local variable referenced before assignment in strange condition
- Python 2.7 - find combinations of numbers in a list that add to another number
- Can't install anything with pip2 on Windows 7 due to UnicodeDecodeError
Related Questions in SUBLIMETEXT3
- Force sublime text to use PATH from the shell value
- Sublimetext 3 & AngularJS - Syntax highlighting (HTML)
- Longjohn build fail Titanium
- Open current file in IntelliJ wih Sublime
- Shortcut key to show unsaved changes in Sublime Text 3
- How should I create a build system that can take STDIN in Sublime Text 3 under OSX?
- sublime text next_result open blank file
- Sublime Text line wrap and commit messages
- Sublime Text won't output Java println statements in main method
- Sublime Text: set language for each file
- Sublime text - how to select HTML table columns?
- Sublime 3; How to accurately count characters when both CR and LF are present in line termination
- Can't open folder that was dragged and dropped to sidebar in sublime text3
- Sublime Text: ignore double quotes and display correct colors for HTML tags
- How can I configure git to open the relevant COMMIT_EDITMSG in sublime text 3?
Related Questions in APTANA
- Aptana, github & remote (sftp) files
- Does Aptana support ES6?
- "Undefined variable print" error in python program
- Undefined variable: totalScore. How do I define this variable since it is a result of a calculation?
- Aptana and python package management
- cannot import name module with module correctly installed
- nodeclipse dont work on Titanium or Aptana
- Dojo syntax for Eclipse Aptana plugin
- How do I save Ruby Terminal code in Aptana Studio 3?
- Aptana on Ecplise Open PHP Element window not working with sftp connection
- Aptana Studio 3.6.0 - Fuzzy File Finder
- Aptana error since auto upgrade on Mac Yosemite
- Debugging Django project in Aptana
- Cordova can't find ant but I have Eclipse
- Aptana 3 allow access to local test server?
Related Questions in WINDOWS-7-X64
- ADB issues on Galaxy S3 and Windows 7 - installed but not working?
- How can i import windows.media.capture in my WPF project?
- Can not start MongoDB windows service on Windows 7
- boot2docker ssh apache-kylin windows7 source ambari-functions ambari-functions ERROR : line 11: syntax error: bad function name
- I'm having trouble deploying an ASP.NET Web Forms application (now targeting .NET 3.5) onto a Windows Server 2003 running IIS 6
- cmd line executable web link without a seperate batch file
- Change OS Language Silently (Windows 7)
- Android Studio Emulator - I don't have Intel Visualisation Technology
- How to make android NDK work in windows?
- Asking for Java path every time when launching SQLDeveloper
- Connecting to MS Access Database from R (x64)
- Powershell Error when run on a different machine
- Writing WebSocket Server on Java. Issue on Windows 7 64 bits
- Cannot install laravel/socialite using composer behind proxy
- TomEE service doesn't start on Windows 7 (64 bit)
Related Questions in PYTHON-IMPORT
- Get already imported module in current file by name
- How to solve import error for pandas?
- Python3 import a yet non installed package
- Using imp.load_source to dynamically load python modules AND packages
- app name in python import path
- Why is this imported default module far faster than its raw source
- Python PEP 273 and Amazon BotoCore
- AttributeError : 'module' object has not attribute 'globe1'
- Python import : AttributeError: 'module' object has no attribute 'test'
- python class inheritance with separate script files
- How can I import a python package or __init__.py file using the full path?
- ImportError: No module named... in __init__.py file
- Python: Not able to import module from sibling directory
- Import variable from module imports only first occurrence
- Import modules with proper initialization in Python
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)
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?
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)