Русские видео

Сейчас в тренде

Иностранные видео




Если кнопки скачивания не загрузились НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием, пожалуйста напишите в поддержку по адресу внизу страницы.
Спасибо за использование сервиса savevideohd.ru



Install Django on Mac with PIP and VirtualEnv

Install Django on Mac with PIP and VirtualEnv Django: A Web Development Framework written in Python. It's awesome and super easy to setup and use. For all reference visit: http://djangoproject.com and step-by-step tutorials at http://CodingForEntrepreneurs.com (made for non-technical individuals; you don't have to be an entrepreneur to learn Django here.) PIP: Python Package Install. Pip is an easy way to install python packages. A python package is essentially pre written python code that you can use for free. It's amazing. VirtualEnv: a virtual environment (virtualenv) is important so that version changes do not affect your project (you know, because changes are always been made and improved with code). Using virtualenv is very easy to do. This video shows you how. Don't forget source bin/activate is your friend! The process: Open Terminal (pre-installed Apple application) Install Pip: using $ sudo easy_install pip Install Virtualenv: using $ sudo pip install virtualenv Make a new virtualenv: using $ virtualenv yourenvnamehere Change into virtualenv: using $ cd yourenvnamehere Activate virtualenv: using $ source bin/activate Install Django: using (yourenvnamehere)$ pip install django NOTE: you can also do "$pip install django==1.6.1" replacing the numbers with any version available on DjangoProject.com and, of course, no quotes. A few ways to learn: Coding For Entrepreneurs: https://codingforentrepreneurs.com (includes free projects and free setup guides. All premium content is just $25/mo) On Udemy: Bestselling Udemy Coding for Entrepreneurs Course: https://www.udemy.com/coding-for-entr... (reg $99, this link $49) MatchMaker and Geolocator Course: https://www.udemy.com/coding-for-entr... (advanced course, reg $75, this link: $39) Marketplace & Dail Deals Course: https://www.udemy.com/coding-for-entr... (advanced course, reg $75, this link: $39) Free Udemy Course (40k+ students): https://www.udemy.com/coding-for-entr... Fun Fact! This Course was Funded on Kickstarter: http://www.kickstarter.com/projects/j...

Comments