You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -10,26 +10,17 @@ This package provides a Julia interface to the excellent [Pandas](http://pandas.
10
10
Installation
11
11
--------------
12
12
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:
22
14
23
15
```julia
16
+
using Pkg
24
17
Pkg.add("Pandas")
25
18
using Pandas
26
19
```
27
20
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.
29
22
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.
0 commit comments