Saturday, May 18, 2024
 Popular · Latest · Hot · Upcoming
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 5375  / 3 Years ago, sun, september 26, 2021, 5:29:37

I'm trying to install torch on Ubuntu 20.04.


When I run:


cd ~/torch; bash install-deps;

it generates this error:


Package ipython is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'ipython' has no installation candidate

How do I install ipython?


More From » apt

 Answers
5

If you already have pip installed on your machine, ipython can be installed like this:


pip3 install ipython

If pip is not installed, you’ll need to do this first:


sudo apt install -y python3-pip

That should give you what you need.


[#2263] Sunday, September 26, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
truwom

Total Points: 101
Total Questions: 99
Total Answers: 100

Location: Ivory Coast
Member since Tue, Sep 15, 2020
4 Years ago
truwom questions
;