Can't execute torch from my conda environement

Hy everyone,
I have installed torch in an environement called faster,
and i activate it with conda activate faster
but when i execute my code, it display that there is no module named torch,
it seams that it execute from the base conda not form the environement,
1- is there anyone who can tell me how to change it to execute from the environement?
2- Is there a difference between torch and pytorch?
there are the packages installed inmy envs:

Name Version Build Channel

_libgcc_mutex 0.1 main
blas 1.0 mkl
ca-certificates 2020.1.1 0
certifi 2020.4.5.1 py36_0
cffi 1.14.0 py36he30daa8_1
cuda100 1.0 0 pytorch
cuda92 1.0 0 pytorch
cycler 0.10.0 pypi_0 pypi
cython 0.29.20 pypi_0 pypi
easydict 1.9 pypi_0 pypi
intel-openmp 2020.1 217
kiwisolver 1.2.0 pypi_0 pypi
ld_impl_linux-64 2.33.1 h53a641e_7
libedit 3.1.20181209 hc058e9b_0
libffi 3.3 he6710b0_1
libgcc-ng 9.1.0 hdf63c60_0
libgfortran-ng 7.3.0 hdf63c60_0
libstdcxx-ng 9.1.0 hdf63c60_0
matplotlib 3.2.1 pypi_0 pypi
mkl 2020.1 217
mkl-service 2.3.0 py36he904b0f_0
mkl_fft 1.0.15 py36ha843d7b_0
mkl_random 1.1.1 py36h0573a6f_0
ncurses 6.2 he6710b0_1
ninja 1.9.0 py36hfd86e86_0
numpy 1.18.5 pypi_0 pypi
numpy-base 1.18.1 py36hde5b4d6_1
opencv-python 4.2.0.34 pypi_0 pypi
openssl 1.1.1g h7b6447c_0
pillow 7.1.2 pypi_0 pypi
pip 20.0.2 py36_3
pycparser 2.20 py_0
pyparsing 2.4.7 pypi_0 pypi
python 3.6.10 h7579374_2
python-dateutil 2.8.1 pypi_0 pypi
pytorch 0.4.1 py36_cuda9.2.148_cudnn7.1.4_1 [cuda92] pytorch
pyyaml 5.3.1 pypi_0 pypi
readline 8.0 h7b6447c_0
scipy 1.2.1 pypi_0 pypi
setuptools 47.1.1 py36_0
six 1.15.0 py_0
sqlite 3.31.1 h62c20be_1
tk 8.6.8 hbc83047_0
torch 1.0.0 pypi_0 pypi
torchvision 0.2.1 pypi_0 pypi
wheel 0.34.2 py36_0
xz 5.2.5 h7b6447c_0
zlib 1.2.11 h7b6447c_3

Are you executing the script in the terminal directly of in a Jupyer notebook?
Sometimes, the default Python environment in a notebook is not set to the right one, so you might need to change it inside the notebook.

If you are using the terminal directly, do you see the environment name in front of the current user?

thanks for your replay, you are reight vs code use an other environement to execute the code, it work now.
and please what is the differance between torch and pytorch in the execution?

pytorch would be the package name, while you would have to use import torch inside the script.
These are just names for the same package.