-
How To Create A Virtual Environment In Python Anaconda | Create Virtual Environment Python Windows
Create Virtual Environment conda create –name VirtualEnvironmentName package Activate Virtual Environment activate VirtualEnvironmentName Deactivate Virtual Environment deactivate Example, conda create -n myenv python=3.6 activate myenv deactivate
-
Installing dlib & face-recognition library on Anaconda
Create Virtual Environment in Anaconda using following Command conda create -n myenv python=3.6 Note:- Activate Virtual Environment using following Command conda activate myenv. Install dlib using following Command conda install -c conda-forge dlib Install face-recognition using following Command conda install face-recognition If you get following ERROR then Use Below Mentioned Command to Install face-recognition. Solving environment:…
-
Installing dlib & face-recognition library on Anaconda
Create Virtual Environment in Anaconda using following Command conda create -n myenv python=3.6 Note:- Activate Virtual Environment using following Commandconda activate myenv. Install dlib using following Commandconda install -c conda-forge dlib Install face-recognition using following Commandconda install face-recognition If you get following ERROR then Use Below Mentioned Command to Install face-recognition.Solving environment: failed PackagesNotFoundError: The…