Skip to main content

Posts

Installing pip with get-pip.py in a Python virtual environment on Windows MacOS & Linux

To create a Python virtual environment type below commands on the required console prompt: On Windows     python -m venv ./venv     .\venv\Scripts\activate On Ubuntu     python3 -m venv ./venv      source ./venv/bin/activate There are some exceptional cases where vent creation might fail. Here are some workarounds - https://askubuntu.com/questions/1268833/error-command-path-to-env-bin-python3-7-im-ensurepip-upgrade Exiting a Python Virtual Environment 1 2 3 To exit a Python virtual environment, you can use the  deactivate  command. This command is available in most Unix-like systems and Windows. Example $ deactivate Steps to Exit Virtual Environment 1. Using deactivate Command The most common way to exit a virtual environment is by using the  deactivate  command 1 . Example: $ deactivate 2. Using source deactivate In some cases, especially with certain virtual environment management tools like  virt...

About my iPad Pro & Zoom h1 voice recorder

Watch my long term usage review of the iPad Pro 2018 model with Apple Pencil. Also, check out the Zoom h1 audio recorder & the mic stand.

About my MacBook Pro Touchbar edition & gadget updates

Watch my long term review of my Macbook Pro touchbar 2018 model !!

How to resolve VT-X is not available error in Oracle VM VirtualBox when tried to start a VM

In the Administrator elevated command prompt, paste the following command to disable Microsoft Hyper V and press  Enter : dism.exe /Online /Disable-Feature:Microsoft-Hyper-V Once the command runs successfully, close the elevated Command Prompt and restart your computer. At the next startup, open a Virtualbox machine again and see if you’re still getting the same error message.