-
Installation of Django on Virtual Environment
Installation of Django on Virtual Environment Install virtualenv virtualenv environmentname Note:- environmentname can be replace by any name you want for your environment. Activate environmentname\Scripts\activate Note:- To deactivate virtual environment use following command.deactivate Install Django pip install django Verify your Django Installation django-admin –version Create Project in Django django-admin startproject projectname Note:- Replace projectname with…
-
Installation of Django on Virtual Environment
Installation of Django on Virtual Environment Install virtualenv virtualenv environmentname Note:- environmentname can be replace by any name you want for your environment. Activate environmentname\Scripts\activate Note:- To deactivate virtual environment use following command. deactivate Install Django pip install django Verify your Django Installation django-admin –version Create Project in Django django-admin startproject projectnameNote:- Replace projectname with…
-
Step by Step Installation of XenServer in Virtual Box
Create Virtual Machine in Virtual Box using following YouTube Video. Note :- Replace the Ubuntu’s iso file with XenServer’s iso file . Once the XenServer’s Virtual Machine is Created Follow the Below Given Steps . Step 1 :- Select the keymap you are familiar with and click Ok. Step 2 :- Click Ok on Welcome to XenServer Stepup window. Step…
-
Step by Step Installation of XenServer in Virtual Box
Create Virtual Machine in Virtual Box using following YouTube Video. Note :- Replace the Ubuntu’s iso file with XenServer’s iso file . Once the XenServer’s Virtual Machine is Created Follow the Below Given Steps . Step 1 :- Select the keymap you are familiar with and click Ok. Step 2 :- Click Ok on Welcome to XenServer Stepup window.…
-
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…
-
Installation of OpenStack using DevStack
Install Linux virtual machine on your Virtualbox. Install any Linux System you like, If you do not have a preference, Ubuntu 18.04 will be the best choice as it is the most tested Linux Distro. Add Stack User DevStack should be run as a non-root user with sudo enabled else it will through an error…