UrbanPro

Learn Python Training from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

how can i develop a python project without disturbing python core

Asked by Last Modified  

13 Answers

Learn Python

Follow 0
Answer

Please enter your answer

We will help you with you requirement.Contact us.Training will enable you to complete the task.
Comments

Hi Garimella, We will help you with you requirement.Contact us.Training will enable you to complete the task.
Comments

Python Training & Instructor

Hi Garimella , Python is really versatile. You can make use of core python or if you don't want you can use your user-defined modules and import it for the project . Be sure with naming conventions for the modules.
Comments

Python Trainer [wont support Proxy calls , wont help in assignment]

Hello Garimella.., For writing your project you dont need to disturb any of the core python , you can just use the core python libraries and develop your project, in case if you happen to tamper the Core python also then nothing to worry there are ways to revert the same. Happy project making ...
read more
Hello Garimella.., For writing your project you dont need to disturb any of the core python , you can just use the core python libraries and develop your project, in case if you happen to tamper the Core python also then nothing to worry there are ways to revert the same. Happy project making Thanks. read less
Comments

Tutor

Hi Garimella, You can do it by creating virtualenv. With virtual environment you can use what ever version of python you want even though you have multiple versions of python installed in your linux system. Using the following command you can install virtualenv: pip install virtualenv using following...
read more
Hi Garimella, You can do it by creating virtualenv. With virtual environment you can use what ever version of python you want even though you have multiple versions of python installed in your linux system. Using the following command you can install virtualenv: pip install virtualenv using following commands you can create your own project folder and name the virtualenvironemnt here venv is the name given to the virtual environment: cd my_project_folder virtualenv venv using following command you can use the specified python version: virtualenv -p /usr/bin/python2.7 venv using the following command you can activate your virtual environment: source venv/bin/activate using the following command you can deactivate your virtual environment: deactivate the advantage of using virtualenvironemnt is you never disturb your python core and its modules and the modules installed in virtual environment are only scoped to your virtual environment. Hope this helps, Please ask me if you have any doubts further. read less
Comments

Tutor

Hi Garimella, You can do it by creating virtualenv. With virtual environment you can use what ever version of python you want even though you have multiple versions of python installed in your linux system. Using the following command you can install virtualenv: pip install virtualenv using following...
read more
Hi Garimella, You can do it by creating virtualenv. With virtual environment you can use what ever version of python you want even though you have multiple versions of python installed in your linux system. Using the following command you can install virtualenv: pip install virtualenv using following commands you can create your own project folder and name the virtualenvironemnt here venv is the name given to the virtual environment: cd my_project_folder virtualenv venv using following command you can use the specified python version: virtualenv -p /usr/bin/python2.7 venv using the following command you can activate your virtual environment: source venv/bin/activate using the following command you can deactivate your virtual environment: deactivate the advantage of using virtualenvironemnt is you never disturb your python core and its modules and the modules installed in virtual environment are only scoped to your virtual environment. Hope this helps, Please ask me if you have any doubts further. read less
Comments

Hello Garimella, Can you please give more information on what you mean by "without disturbing python core" ?
Comments

Usually python core are pre defined it wont get disturbed. Unfortunately if disturbed you can perform downgrade and upgrade same version so that it gets restored
Comments

you can simply create a virtual environment as use it, the environment will contain a separate python executable. if you have a mac or linux system, run following commands in terminal: For Mac: Install Homebrew - http://brew.sh/ brew install python pip install MySQL-python pip install virtualenv pip...
read more
you can simply create a virtual environment as use it, the environment will contain a separate python executable. if you have a mac or linux system, run following commands in terminal: For Mac: Install Homebrew - http://brew.sh/ brew install python pip install MySQL-python pip install virtualenv pip install virtualenvwrapper vim ~/.bashrc (will open bashrc in texteditor): Copy this code to end of .bashrc : export WORKON_HOME=$HOME/.virtualenvs source /usr/local/bin/virtualenvwrapper.sh source ~/.bashrc mkvirtualenv retailone pip install -r requirements.txt For Linux: sudo apt-get install python-dev sudo apt-get install python-pip sudo apt-get install python-mysqldb sudo apt-get install python-imaging libjpeg8-dev sudo apt-get install libmysqlclient-dev libxml2-dev libxslt1-dev libssl-dev libffi-dev sudo pip install virtualenv sudo pip install virtualenvwrapper vim ~/.bashrc (will open bashrc in texteditor) Copy this code to end of .bashrc : export WORKON_HOME=$HOME/.virtualenvs export PROJECT_HOME=$HOME/Devel source /usr/local/bin/virtualenvwrapper.sh source ~/.bashrc mkvirtualenv 'env-name' then just activate it as workon env-name to deactivate env, run 'deactivate' hope that helps read less
Comments

Life Skills & Software Trainer

Hi Garimella, The question is not clear. Request you to kindly clarify please. Thanks in Advance God Bless You! God Bless India!!! Khaleel A Shariff
Comments

View 11 more Answers

Related Questions

Is it possible to learn Python without any coaching class?
Certainly it is possible. What is required is some dedicated time, self-discipline and the willingness to learn by trial and error.
Neetu
0 0
7
Why does â??5/2 = 2â?? and not 2.5 in Python?
Due to dynamic Typing. use Numpy , and declare data type , you will get desired result
Srikanth
0 0
6
SVM is applicable only for numeric data or can also be for textual data?
Any learning algorithm for that matter does not work Directly on text. It needs to be converted to a structured matrix before applying algorithms.The methods involve - 1. Extensive cleaning of the data...
Harsha

Is python useful for app development?

Android doesn't support python but you can convert easily python to android app.
Prachi

Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com

Ask a Question

Related Lessons

Getting started with Python IDLE
Now that we have looked at some example programs, we would like to learn how to begin the actual process of writing a program in Python. There are a variety of ways to tell Python to execute the code we...

Difference between Python 2.x and Python 3.x
Python 2.x and Python 3.x differs in following features: Division operator print function Unicode xrange Error Handling __future__ module

Python Dictionary
Python dictionary is an unordered collection of items. While other compound datatypes have only value as an element, a dictionary has a key: value pair. Dictionaries are optimized to retrieve values when...

Code: Gantt Chart: Horizontal bar using matplotlib for tasks with Start Time and End Time
import pandas as pd from datetime import datetimeimport matplotlib.dates as datesimport matplotlib.pyplot as plt def gantt_chart(df_phase): # Now convert them to matplotlib's internal format... ...
R

Rishi B.

0 0
0

Learn Python : Slicing out an email address
We take a small task of slicing out the username and domain name from an email address. We ask the user to type his email address. We take his email address and slice out first his username and then the...
B

Biswanath Banerjee

0 0
0

Recommended Articles

Python is one of the most popular programming languages in the world. It is general-purpose, object oriented, high-level programming language used in a number of programming fields. Python is a great programming language to learn as it will introduce you to the world of programming. If you are from the technical background...

Read full article >

Business Process outsourcing (BPO) services can be considered as a kind of outsourcing which involves subletting of specific functions associated with any business to a third party service provider. BPO is usually administered as a cost-saving procedure for functions which an organization needs but does not rely upon to...

Read full article >

Information technology consultancy or Information technology consulting is a specialized field in which one can set their focus on providing advisory services to business firms on finding ways to use innovations in information technology to further their business and meet the objectives of the business. Not only does...

Read full article >

Almost all of us, inside the pocket, bag or on the table have a mobile phone, out of which 90% of us have a smartphone. The technology is advancing rapidly. When it comes to mobile phones, people today want much more than just making phone calls and playing games on the go. People now want instant access to all their business...

Read full article >

Looking for Python Training classes?

Learn from the Best Tutors on UrbanPro

Are you a Tutor or Training Institute?

Join UrbanPro Today to find students near you
X

Looking for Python Training Classes?

The best tutors for Python Training Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn Python Training with the Best Tutors

The best Tutors for Python Training Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more