Reputation: 453
I have a python package i would like to install or link into Anaconda.
I currently have the package, http://www.physics.rutgers.edu/pythtb/install.html
, running by setting up both stock python and Anaconda separately on my Windows machine. (I can only run the desired package in stock python) Ideally, I would like to use the package in Anaconda.
The package i installed came in as an exe file and all i needed to be able to use it in stock python was just to run the exe file.
i have done some googling and found python setup.py install
as a way to do just that ( from https://python4astronomers.github.io/installation/packages.html
)
It made very little sense to me (im not sure if it's even applicable to my case).
Upvotes: 1
Views: 5930
Reputation: 5420
python
when you type C:\> python
is the one you want, e.g it is from Anacondasetup.py
therepython setup.py install
Alternately, with the wheel package installed, one can run wheel convert pythtb-1.6.2.exe
on a wininst exe installer to convert it into a wheel that is installable by pip.
Upvotes: 4