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
Please update the documentation to distinguish a python2 vs python3 install process (e.g. pip3)
If you fire up ipython, it will default to python3, which can cause confusing ModuleNotFoundError errors
The text was updated successfully, but these errors were encountered:
I am also have a little bit of a problem for the error below.... ModuleNotFoundError: No module named 'lightning'
Sorry, something went wrong.
Default python interpreter is picked up based on your which python is set in your PATH. Use below options to fix your issue.
Option1:
pip3 install lightning-python
Option2: Create a virtualenv and install lightning
virtualenv --version # verify if virtualenv is installed else install pip install virtualenv virtualenv venv source venv/bin/activate pip install lightining-python pip install jupyter jupyter notebook # launch notebook
No branches or pull requests
Please update the documentation to distinguish a python2 vs python3 install process (e.g. pip3)
If you fire up ipython, it will default to python3, which can cause confusing ModuleNotFoundError errors
The text was updated successfully, but these errors were encountered: