44 | | Build SasView. To do this we would ideally we would like to run: |
| 42 | == Step 5 - Check that the Right Version of Python is Being Used == |
| 43 | |
| 44 | Ask your console which versions of Python it can find: |
| 45 | |
| 46 | {{{ |
| 47 | where python |
| 48 | }}} |
| 49 | |
| 50 | Hopefully, the first python installation in the list is the recently-installed Anaconda version. If not, you have two options: |
| 51 | |
| 52 | 1. Whenever you call python on the command line from now on, use the fully resolved path, e.g.: |
| 53 | {{{ |
| 54 | C:/PathToAnaconda/python |
| 55 | }}} |
| 56 | |
| 57 | 2. Reorder your PATH/Path environment variables so that the Anaconda installation of Python appears BEFORE all the others. Environment variables can be modified by pressing the windows key, typing "edit the system environment variables" and hitting Enter. The build-in Windows way of doing this is not very nice. An easier way to edit environment variables is by installing [http://www.rapidee.com/en/download RapidEE]. |
| 58 | |
| 59 | == Step 6 - Build SasView == |