I have the latest pip installed but for some reason I cannot install pyteal

Hi Good afternoon Algo squad.

I am new to development with Algorand. I have installed the packages, however when it comes to installing pyteal I am getting an error.
First let me say that the version of python I have is 3.9.6
and the pip version I have is pip 21.2.2

When using the cmd’s

  1. pip install pyteal
  2. pip3 install pyteal

The error that is showing up is:
Defaulting to user installation because normal site-packages is not writeable.
Requirement already satisfied: pyteal in C:\users\myself\appdata\roaming\python\python39\site-packages (0.7.0)

Everything seems to be working correctly.
What happens if you try to run a PyTEAL example python file?

Also, in general, it is preferable to call pip using the following syntax:

python3 -m pip install pyteal

(where python3 is your Python interpreter)
This way, you are sure you are installing the package for the correct interpreter.

A post was split to a new topic: TLS/SSL issue with pip installing PyTeal