Skip to main content

Create a URL Shortener app with Python and Django Easily. Part-1

Create a URL Shortener app with Django 

Part 1. How to set up and activate the virtual environment & installing Django.








As promised in the previous post (How to generate a random string with Python.), I am starting a post series on creating a URL Shortener app with Django and Python.


Photo by LinkedIn Sales Solutions on Unsplash


Getting Started


INFO: I am using GitBash CLI and if anyone uses it please download and install it following the link below. https://gitforwindows.org/


First, we have to create a virtual environment so that we can isolate our project. Even if there are too many ways to do it,  I am going to use virtualenv to do it.

To create a virtual environment, follow the instructions below.

1. Create a new folder.

To make things easier, we are going to create a new folder to store our project. You can create a folder using the GitBash





2. Activate the Virtulenv.


To create a virtual environment, navigate to the folder you created and open the GitBash terminal.
And run the command below.



command explanation

  1.  cd projects:  navigate to the folder we created (projects)
  2.  virtualenv env: to create the virtual environment. env is going to be the name of the environment we going to create and you can use any name you want instead of env


To activate the environment created, we have to run the following line.




Warning: If you use the windows command prompt, this won't work for you. Installing GitBash will solve the problems and if you don't like to install it you have to find the appropriate command for the windows whenever you run a command.

This will activate the  virtual env

To install Django you can simply use the PIP. If you don't know how to install PIP please read this post: How to install PIP on Windows easily.




This will install the latest version of Django and all its dependencies.





That's it and now we are ready to start our journey. Stay tuned for the other parts of the series.



Comments

Trending Now

Let's talk about cryptography.

Have you ever heard of cryptography?  People write their diaries every day. For many of them, their diary is one of their best friends to whom they tell their every secret. What happens when someone else finds such a diary? That would freak out the dairy's owner for sure. Also, it might put their lives in danger. Wise men always hide their diaries so no one else finds it.  But legends hide their message so that only they can read what they wrote. So even if the diary is found by someone else, they cannot know the secrets. for example, I wrote this in my diary today.   P dyval h isvn wvza hivba jyfwavnyhwof avkhf Can you understand it? This is just a very primitive level of cryptography yet powerful enough to hide what I wrote from 90% of people. I will discuss this type of cryptography in the next blog post. The human used cryptography from the very beginning to share their messages in secret and conceal their inventions. As you may know, many people tried to find a recip...

How to reset SUDO password of ubuntu on WSL [STEP BY STEP GUIDE]

Hello everyone, I just found out a super easy way to reset the password of Ubuntu installed on your windows PC. Step 1: Know your username your ubuntu username can be found by various ways. the easiest method is to run the $whoami command on Ubuntu terminal to get your username. Here my username is chamodhk Step 2: Reset the password Now close your Ubuntu terminal and open windows command prompt and run the command  wsl -d Ubuntu -u root now you have logged in as the root of the Ubuntu system and now type the following command. passwd <your_username> in this command replace the <your_username> part with your actual username. In my case, the command is passwd chamodhk That's it. Follow the on-screen instructions to create your new password. Don't forget to leave a comment :) bye.