Hi @Eleonora_Panini,
Thank you for asking this question!
To install PennyLane locally it’s strongly recommended that you create a new virtual environment to prevent you from having any installation issues. You can create a virtual environment with Conda and install PennyLane as follows:
- Install Anaconda following the instructions here.
- Open your terminal (mac) or command line (Windows).
- Create a new Conda environment with:
conda create --name <name_of_your_environment> python=3.10
- Activate the environment with:
conda activate <name_of_your_environment>
- Install PennyLane with:
python -m pip install pennylane
- Install other useful packages with:
python -m pip install pennylane jupyter matplotlib
Note that you will be installing 3 packages here: PennyLane, Jupyter, and Matplotlib. You don’t necessarily need the three of them but they tend to be useful. Also, note that where it says <name_of_your_environment>
you can choose any name that you want. After this you can write jupyter notebook
in your terminal/command line and you will be ready to create programs using PennyLane.
You can also watch the video here for detailed PennyLane installation instructions.
If you have trouble installing PennyLane locally, you can use Google Colab and open a new notebook there. Run the following at the beginning of your notebook (including the exclamation mark): !pip install pennylane
If you’re still facing issues please post your code and your full error traceback.
I hope this helps you get started!