We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hell guys, I tried to install the vxi11 python lbrary in Ubuntu 16.04 using the next command:
sudo python setup.py install
I get the next log:
_running install running bdist_egg running egg_info writing python_vxi11.egg-info/PKG-INFO writing top-level names to python_vxi11.egg-info/top_level.txt writing dependency_links to python_vxi11.egg-info/dependency_links.txt writing entry points to python_vxi11.egg-info/entry_points.txt reading manifest file 'python_vxi11.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file 'python_vxi11.egg-info/SOURCES.txt' installing library code to build/bdist.linux-x86_64/egg running install_lib running build_py creating build/bdist.linux-x86_64/egg creating build/bdist.linux-x86_64/egg/vxi11 copying build/lib.linux-x86_64-2.7/vxi11/cli.py -> build/bdist.linux-x86_64/egg/vxi11 copying build/lib.linux-x86_64-2.7/vxi11/vxi11.py -> build/bdist.linux-x86_64/egg/vxi11 copying build/lib.linux-x86_64-2.7/vxi11/version.py -> build/bdist.linux-x86_64/egg/vxi11 copying build/lib.linux-x86_64-2.7/vxi11/init.py -> build/bdist.linux-x86_64/egg/vxi11 copying build/lib.linux-x86_64-2.7/vxi11/rpc.py -> build/bdist.linux-x86_64/egg/vxi11 byte-compiling build/bdist.linux-x86_64/egg/vxi11/cli.py to cli.pyc byte-compiling build/bdist.linux-x86_64/egg/vxi11/vxi11.py to vxi11.pyc byte-compiling build/bdist.linux-x86_64/egg/vxi11/version.py to version.pyc byte-compiling build/bdist.linux-x86_64/egg/vxi11/init.py to init.pyc byte-compiling build/bdist.linux-x86_64/egg/vxi11/rpc.py to rpc.pyc creating build/bdist.linux-x86_64/egg/EGG-INFO copying python_vxi11.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO copying python_vxi11.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO copying python_vxi11.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO copying python_vxi11.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO copying python_vxi11.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO zip_safe flag not set; analyzing archive contents... creating 'dist/python_vxi11-0.9-py2.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it removing 'build/bdist.linux-x86_64/egg' (and everything under it) Processing python_vxi11-0.9-py2.7.egg Removing /usr/local/lib/python2.7/dist-packages/python_vxi11-0.9-py2.7.egg Copying python_vxi11-0.9-py2.7.egg to /usr/local/lib/python2.7/dist-packages python-vxi11 0.9 is already the active version in easy-install.pth Installing vxi11-cli script to /usr/local/bin
Installed /usr/local/lib/python2.7/dist-packages/python_vxi11-0.9-py2.7.egg Processing dependencies for python-vxi11==0.9 Finished processing dependencies for python-vxi11==0.9_
as you can see there is no errors in the installation, when I tried to use in my python script:
import vxi11
get me the next error:
import vxi11 ImportError: No module named vxi11
any idea what I did wrong?
SALUDOS!!!!!
The text was updated successfully, but these errors were encountered:
An easier way of installing vxi11, unless you want to have an editable local copy, is to use pip
$ pip install git+https://github.com/python-ivi/python-vxi11#egg=vxi11
Hopefully this works for you. :)
Sorry, something went wrong.
No branches or pull requests
Hell guys,
I tried to install the vxi11 python lbrary in Ubuntu 16.04 using the next command:
sudo python setup.py install
I get the next log:
_running install
running bdist_egg
running egg_info
writing python_vxi11.egg-info/PKG-INFO
writing top-level names to python_vxi11.egg-info/top_level.txt
writing dependency_links to python_vxi11.egg-info/dependency_links.txt
writing entry points to python_vxi11.egg-info/entry_points.txt
reading manifest file 'python_vxi11.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'python_vxi11.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/vxi11
copying build/lib.linux-x86_64-2.7/vxi11/cli.py -> build/bdist.linux-x86_64/egg/vxi11
copying build/lib.linux-x86_64-2.7/vxi11/vxi11.py -> build/bdist.linux-x86_64/egg/vxi11
copying build/lib.linux-x86_64-2.7/vxi11/version.py -> build/bdist.linux-x86_64/egg/vxi11
copying build/lib.linux-x86_64-2.7/vxi11/init.py -> build/bdist.linux-x86_64/egg/vxi11
copying build/lib.linux-x86_64-2.7/vxi11/rpc.py -> build/bdist.linux-x86_64/egg/vxi11
byte-compiling build/bdist.linux-x86_64/egg/vxi11/cli.py to cli.pyc
byte-compiling build/bdist.linux-x86_64/egg/vxi11/vxi11.py to vxi11.pyc
byte-compiling build/bdist.linux-x86_64/egg/vxi11/version.py to version.pyc
byte-compiling build/bdist.linux-x86_64/egg/vxi11/init.py to init.pyc
byte-compiling build/bdist.linux-x86_64/egg/vxi11/rpc.py to rpc.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying python_vxi11.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying python_vxi11.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying python_vxi11.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying python_vxi11.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying python_vxi11.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
zip_safe flag not set; analyzing archive contents...
creating 'dist/python_vxi11-0.9-py2.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing python_vxi11-0.9-py2.7.egg
Removing /usr/local/lib/python2.7/dist-packages/python_vxi11-0.9-py2.7.egg
Copying python_vxi11-0.9-py2.7.egg to /usr/local/lib/python2.7/dist-packages
python-vxi11 0.9 is already the active version in easy-install.pth
Installing vxi11-cli script to /usr/local/bin
Installed /usr/local/lib/python2.7/dist-packages/python_vxi11-0.9-py2.7.egg
Processing dependencies for python-vxi11==0.9
Finished processing dependencies for python-vxi11==0.9_
as you can see there is no errors in the installation, when I tried to use in my python script:
import vxi11
get me the next error:
import vxi11
ImportError: No module named vxi11
any idea what I did wrong?
SALUDOS!!!!!
The text was updated successfully, but these errors were encountered: