Python Forum
Cannot find Python installation folder when I install Anaconda - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Cannot find Python installation folder when I install Anaconda (/thread-28327.html)



Cannot find Python installation folder when I install Anaconda - bsbsbsbs - Jul-14-2020

Hi I need to make a directory to my Python folder when trying to use a separate program that requires a python path.

[Image: thmyja]

I thought Python came already installed with Anaconda3, but in my Anaconda folder there doesn't seem to a "Python" folder anywhere, like I've seen online in some other people's Anaconda install folder.


RE: Cannot find Python installation folder when I install Anaconda - dgrunwal - Jul-14-2020

In the Spyder/Anaconda console

>>> import sys
>>> print(sys.version)
3.7.3 (default, Apr 24 2019, 15:29:51) [MSC v.1915 64 bit (AMD64)]
>>>

Also check:
Tools -> Preferences allows for Python interpreter/PYTHONPATH management.

Believe Anaconda installs Python
All the Best,
David