Skip to main content

Posts

Showing posts with the label npl

Installing python modules without pip

Ever wanted to install python modules, but you were unable to do it using pip install command, or simply wanted to do it using python, if so then this is the post you want to read.  pip module is now by default installed when you install the latest python, if you want to install multiple python modules you can either enter pip commands in command prompt or terminal or make a batch file, In this post, we will see how to install all the modules that you want by executing a python program. Lets look at the code,  In the above code you can simply put the modules you want to install in the list and execute the code. You might also be interested in  Data Encryption using Caesar Cipher Data Decryption using Caesar Cipher LCM of 2 numbers Anagram Strings Double Linked List Finding Middle node in a Linked List Infix to Prefix Conversion