Get Started with a Deep Learning Laptop with GPU: MSI Leopard G66 setup and Performance Review

Опубликовано: 25 Февраль 2026
на канале: AI with Sohini
1,869
30

First step is installation of anaconda
https://www.anaconda.com/products/ind...

Commands to install tensorflow with Aaconda
conda create --name autotf1
conda activate autotf1
conda install ipykernel
conda install numpy
conda install scikit-learn
conda install scikit-image
conda search tensorflow
conda install tensorflow-gpu=2.5.0 tensorflow=2.5.0=gpu_py39h7dc34a2_0

Test installation
Python
import tensorflow as tf
tf.test.is_gpu_available()
exit()

python -m ipykernel install --user --name autotf1