Import python module with explicit path
Import python module with explicit path
Sometimes, when importing a python module into a python script, you get error like this one File "", line 1, in ImportError: No module name package_name
Check if that package is installed. If it is installed try using something like: import sys sys.path.append(r"/path_to_package") import package_name
View On WordPress















