I have installed Python 3 using Anaconda and I need to install the Swampy module. Could you please advice me on how to proceed?
Asked
Active
Viewed 792 times
1
-
pip install swampy or conda install swampy ? – Gerard Rozsavolgyi Dec 27 '15 at 14:19
1 Answers
0
I could not find a conda
package for it. So use pip
:
pip install swampy
works also with Anaconda installed Python.
The installer conda
that comes with Anaconda knows about the newly installed package:
conda list
....
swampy 2.1.7 <pip>

Mike Müller
- 82,630
- 20
- 166
- 161
-
Hi Mike, I tried this, however I am getting this message: C:\Users\sony>conda install swampy Fetching package metadata: .... Error: No packages found in current w Did you mean one of these? sympy You can search for this package on an anaconda search -t conda swampy – Arejet Biswas Dec 28 '15 at 16:35
-
What does *this is not working* mean? Any traceback, error message? – Mike Müller Dec 28 '15 at 16:39
-
Hi Mike, I also pasted the message I was getting after typing the command. Someone also opinionated that swampy module works for Python 2.7 and not for 3.5. – Arejet Biswas Dec 31 '15 at 17:01