Python Forum
Import Library but Download first?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Import Library but Download first?
#6
(Feb-01-2019, 10:27 AM)OscarBoots Wrote: So when you're talking about installed, they are the ones that have been downloaded first to the PC?
There is no download for you all is done automatic,as mention with pip install pandas
Dependencies(basic that pandas need) as @buran mention is now also been taking care with command over.

To show a demo i use virtual environment,so it work as a new install.
See that basic dependencies also get installed numpy, six, python-dateutil, pytz, pandas.
# Check pip the newest is 19.0.1
λ pip -V
pip 19.0.1 from e:\div_code\panda_env\lib\site-packages\pip (python 3.7)

# Install pandas
(panda_env) E:\div_code\panda_env
λ pip install pandas
Collecting pandas
  Downloading ...
Installing collected packages: numpy, six, python-dateutil, pytz, pandas
Successfully installed numpy-1.16.1 pandas-0.24.0 python-dateutil-2.7.5 pytz-2018.9 six-1.12.0

# Test that that it work
(panda_env) E:\div_code\panda_env
λ python
Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:06:47) [MSC v.1914 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pandas as pd
>>> pd.__version__
'0.24.0'
>>> exit()
Reply


Messages In This Thread
Import Library but Download first? - by OscarBoots - Feb-01-2019, 10:10 AM
RE: Import Library but Download first? - by Larz60+ - Feb-01-2019, 10:20 AM
RE: Import Library but Download first? - by Larz60+ - Feb-01-2019, 12:07 PM
RE: Import Library but Download first? - by buran - Feb-01-2019, 01:00 PM
RE: Import Library but Download first? - by snippsat - Feb-01-2019, 05:52 PM
RE: Import Library but Download first? - by buran - Feb-02-2019, 06:20 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Install any library via pip get an error cannot import name 'SCHEME_KEYS' from 'pip. Anldra12 2 10,680 Jan-04-2022, 01:05 PM
Last Post: Anldra12
  download with internet download manager coral_raha 0 2,972 Jul-18-2021, 03:11 PM
Last Post: coral_raha
  How to test and import a model form computer to test accuracy using Sklearn library Anldra12 6 3,148 Jul-03-2021, 10:07 AM
Last Post: Anldra12
  Regarding import library in two different program file Rohit 3 2,482 Jan-22-2020, 07:14 AM
Last Post: buran
  sys library and how to import using conda michavardy 0 2,504 Feb-26-2019, 08:25 AM
Last Post: michavardy
  Do you know how to import Python Standard Library sylas 30 14,257 Jan-26-2018, 01:32 PM
Last Post: metulburr
  PyInstaller, how to create library folder instead of library.zip file ? harun2525 2 4,820 May-06-2017, 11:29 AM
Last Post: harun2525

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020