You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While attempting to python run.py in a virtual environment with Python version 3.6.9 on Ubuntu 18.04 I get
ModuleNotFoundError: No module named 'guest'
The full error: Traceback (most recent call last): File "run.py", line 1, in <module> from app import app File "/home/mbulla/Bootcamp-Exercises/frameworks/app/__init__.py", line 9, in <module> from app.models import Guest File "/home/mbulla/Bootcamp-Exercises/frameworks/app/models/__init__.py", line 1, in <module> from guest import Guest ModuleNotFoundError: No module named 'guest'
The text was updated successfully, but these errors were encountered:
Hello guys. I'm also learning with OSU DOBC. First I installed python2 on global using ..
$sudo apt install python2
Then I installed python2 in virtualenv using..
$virtualenv --python=/usr/bin/python2 venv
It shows some warning but I think it's okay as we are learning.
While attempting to python run.py in a virtual environment with Python version 3.6.9 on Ubuntu 18.04 I get
ModuleNotFoundError: No module named 'guest'
The full error:
Traceback (most recent call last): File "run.py", line 1, in <module> from app import app File "/home/mbulla/Bootcamp-Exercises/frameworks/app/__init__.py", line 9, in <module> from app.models import Guest File "/home/mbulla/Bootcamp-Exercises/frameworks/app/models/__init__.py", line 1, in <module> from guest import Guest ModuleNotFoundError: No module named 'guest'
The text was updated successfully, but these errors were encountered: