Skip to content

Commit 5923cea

Browse files
authored
Update README installation instructions. (#81)
1 parent c562ace commit 5923cea

File tree

1 file changed

+5
-14
lines changed

1 file changed

+5
-14
lines changed

README.md

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pandas.jl
22
=============
33

4-
![Pandas.jl logo](https://storage.googleapis.com/malmaud-stuff/pandas_logo.png?version=2)
4+
![Pandas.jl logo](https://storage.googleapis.com/malmaud-stuff/pandas_logo.png)
55

66
[![Travis status](https://travis-ci.org/JuliaPy/Pandas.jl.svg?branch=master)](https://travis-ci.org/JuliaPy/Pandas.jl)
77

@@ -10,26 +10,17 @@ This package provides a Julia interface to the excellent [Pandas](http://pandas.
1010
Installation
1111
--------------
1212

13-
You must have Pandas installed. Usually you can do that on the command line by typing
14-
15-
```
16-
sudo pip install pandas
17-
```
18-
19-
It also comes with the Anaconda and Enthought Python distributions.
20-
21-
Then in Julia, type
13+
Simply install the `Pandas` package using the Julia package manager. From the Julia REPL:
2214

2315
```julia
16+
using Pkg
2417
Pkg.add("Pandas")
2518
using Pandas
2619
```
2720

28-
No-hassle installation is also available via Docker:
21+
Which version of the Python Pandas library is used depends on how your installation of PyCall.jl is configured. By default, the Python Pandas library will be automatically downloaded and installed in a mininal Python installation managed by Julia and independent from any other Python distributions on your system.
2922

30-
```
31-
docker run -it malmaud/julia_pandas
32-
```
23+
See the [PyCall configuration](https://github.com/JuliaPy/PyCall.jl#specifying-the-python-version) for instructions on changing this behavior.
3324

3425
Usage
3526
---------

0 commit comments

Comments
 (0)