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
$ pyflow ipython
Traceback (most recent call last):
File "~/code/project/__pypackages__/3.9/bin/ipython", line 4, in <module>
from IPython import start_ipython
File "~/code/project/__pypackages__/3.9/lib/IPython/__init__.py", line 51, in <module>
from .core.application import Application
File "~/code/project/__pypackages__/3.9/lib/IPython/core/application.py", line 27, in <module>
from IPython.core import release, crashhandler
File "~/code/project/__pypackages__/3.9/lib/IPython/core/crashhandler.py", line 28, in <module>
from IPython.core import ultratb
File "~/code/project/__pypackages__/3.9/lib/IPython/core/ultratb.py", line 110, in <module>
from IPython.utils import path as util_path
File "~/code/project/__pypackages__/3.9/lib/IPython/utils/path.py", line 17, in <module>
from IPython.utils.process import system
File "~/code/project/__pypackages__/3.9/lib/IPython/utils/process.py", line 19, in <module>
from ._process_posix import system, getoutput, arg_split, check_pid
File "~/code/project/__pypackages__/3.9/lib/IPython/utils/_process_posix.py", line 23, in <module>
import pexpect
ModuleNotFoundError: No module named 'pexpect'
Running pyflow install --dev pexpect fixes it, but this is a bit surprising, since a similar set of install commands works fine with virtualenv:
I am getting this error as well. Maybe a problem with dependency graph generator? If I run pyflow install pexpect then try to initiate ipython it runs.
After pyflow install ipython followed by pyflow install pexpect I now get this error on Ubuntu 20.04:
pyflow ipython
Traceback (most recent call last):
File "/home/oatman/projects/pftest/__pypackages__/3.9/bin/ipython", line 4, in <module>
from IPython import start_ipython
File "/home/oatman/projects/pftest/__pypackages__/3.9/lib/IPython/__init__.py", line 53, in <module>
from .terminal.embed import embed
File "/home/oatman/projects/pftest/__pypackages__/3.9/lib/IPython/terminal/embed.py", line 15, in <module>
from IPython.core.interactiveshell import DummyMod, InteractiveShell
File "/home/oatman/projects/pftest/__pypackages__/3.9/lib/IPython/core/interactiveshell.py", line 73, in <module>
from IPython.core.history import HistoryManager
File "/home/oatman/projects/pftest/__pypackages__/3.9/lib/IPython/core/history.py", line 11, in <module>
import sqlite3
File "/home/oatman/.local/share/pyflow/python-3.9.0/lib/python3.9/sqlite3/__init__.py", line 23, in <module>
from sqlite3.dbapi2 import *
File "/home/oatman/.local/share/pyflow/python-3.9.0/lib/python3.9/sqlite3/dbapi2.py", line 27, in <module>
from _sqlite3 import *
ModuleNotFoundError: No module named '_sqlite3'
I've got the sqlite dev libraries install, I wonder if there is a way to install the right version of python?
Hi, this project looks very interesting, thanks for working on it!
I tried to install jupyter & run the ipython CLI, but got this error:
Install command and output
Running
pyflow install --dev pexpect
fixes it, but this is a bit surprising, since a similar set of install commands works fine with virtualenv:Full output for these commands
And
pexpect
is installed automatically:Environement:
The text was updated successfully, but these errors were encountered: