ExoWorldsSpies / hops

HOPS - A user-friendly software for single-object photometry and exoplanet light-curve modelling
MIT License
19 stars 5 forks source link

Tip for Windows users for who the windows installer doesn't work #10

Open void4 opened 1 year ago

void4 commented 1 year ago

In the command line, I had to manually install a few Python packages like this:

pip install scipy astroquery emcee

and then append --user to the python setup.py install line of installer_windows

SET mydir=%cd%

python "%mydir%\pre_setup.py"

SET /p pydir=<pydir.txt

call "%pydir%"

python "%mydir%\setup.py" install --user
python "%mydir%\post_setup.py"
python "%mydir%\setup_close.py"

because the installer gave a "permission denied" error as it couldn't access a folder.

eismue commented 9 months ago

Thank you, that was helpful. It's just a bit annoying to have to deal with side issues that have nothing directly to do with the matter at hand.