opticspy / lightpipes

LightPipes for Python, "Pure Python version"
https://opticspy.github.io/lightpipes/
BSD 3-Clause "New" or "Revised" License
228 stars 53 forks source link

location of conda #19

Closed guyskk closed 7 years ago

guyskk commented 7 years ago

Does this the correct location in your system? @FredvanGoor

from getpass import getuser

CONDA_32 = r'C:\Users\{}\Miniconda32\Scripts\conda.exe'.format(getuser())
CONDA_64 = r'C:\Users\{}\Miniconda64\Scripts\conda.exe'.format(getuser())

I expect getuser() return Fred in your system and kk in my system, so we needn't modify it any more.

FredvanGoor commented 7 years ago

Yes, that works on my PC as well.