Issue
Im new to python, only used C before. I use ubuntu 18.04. Anyways, a buddy of mine gave me the tip to get ipython to test commands so I installed it by "pip install ipython" but I only got v2.7.15+, both ipython and ipython2 are this version. I've tried to search around for a solution but can't find anything. Anyone knows what to do?
Solution
If you have python3 installed, simply use:
python3 -m pip install ipython
-m
is for module:
When called with -m module-name, the given module is located on the Python module path and executed as a script.
From Command line and environment @ Interface options
EDIT:
try doing:
pip3 install ipython
If that doesn't work, try doing:
sudo apt install python3-pip
Then one of the above.
Answered By - ori6151
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.