Hi,
Could you check if python is already installed in your system?
To do that, simply open a new terminal then run the following command:
- Code: Select all
python
If python is installed, you will see the python version and the release date of python. Now you have to find the python path, write the following code in the terminal running python (one line at a time):
python code
import sys
print "\n".join(sys.path)
The result will be several lines, you have to find a line starting by something like:
python code
c:\Python27
This is the path of python that clarisse have to use. You have now to edit the clarisse.env file, by default the env file is set to:
- Code: Select all
%APPDATA%/Isotropix/Clarisse/clarisse.env
Inside of it you should have something like this:
- Code: Select all
PYTHONHOME=Your_Python_Path
PYTHONPATH=Your_Python_Path/lib
Set the PYTHONHOME and PYTHONPATH variable like shown up by replacing "Your_Python_Path". for me it is:
- Code: Select all
PYTHONHOME=c:\Python27
PYTHONPATH=C:\Python27\Lib;C:\Python27\DLLs;C:\Python27\Lib\lib-tk
If python is not installed then you have to install python separately:
https://www.python.org/downloads/Make sure to check the option to Install it for All UsersNow try to open clarisse, if it still doesn't work do the step I write on the top of the post.
Tell us if there is still an issue.
Regards,