@@ -10,13 +10,13 @@ We strongly recommend using a virtual environment `venv` or `conda`
1010to avoid potential conflicts with other Python packages.
1111```
1212
13- ## Using ` pip ` and ` virtualenv ` .
13+ ## Using ` pip ` and ` virtualenv `
1414
1515Install the 64-bit version of Python 3 from https://www.python.org .
1616
1717``` shell
1818$ python -m venv mdio-venv
19- $ mdio-venv\ S cripts\ a ctivate
19+ $ mdio-venv/ Scripts/ activate
2020$ pip install -U multidimio
2121```
2222
@@ -55,7 +55,7 @@ The above command will install MDIO into your `conda` environment.
5555After installing MDIO, run the following:
5656
5757``` shell
58- python -c import mdio; print(mdio.__version__)"
58+ $ python -c " import mdio; print(mdio.__version__)"
5959```
6060
6161You should see the version of MDIO printed to the screen.
@@ -65,12 +65,19 @@ You should see the version of MDIO printed to the screen.
6565You can also install some optional dependencies (extras) like this:
6666
6767``` shell
68- pip install multidimio[distributed]
69- pip install multidimio[cloud]
70- pip install multidimio[lossy]
68+ $ pip install multidimio[distributed]
69+ $ pip install multidimio[cloud]
70+ $ pip install multidimio[lossy]
7171```
7272
7373` distributed ` installs [ Dask] [ dask ] for parallel, distributed processing.\
7474` cloud ` installs [ fsspec] [ fsspec ] backed I/O libraries for [ AWS' S3] [ s3fs ] ,
7575[ Google's GCS] [ gcsfs ] , and [ Azure ABS] [ adlfs ] .\
7676` lossy ` will install the [ ZFPY] [ zfp ] library for lossy chunk compression.
77+
78+ [ dask ] : https://www.dask.org/
79+ [ fsspec ] : https://filesystem-spec.readthedocs.io/en/latest/
80+ [ s3fs ] : https://s3fs.readthedocs.io/
81+ [ gcsfs ] : https://gcsfs.readthedocs.io/
82+ [ adlfs ] : https://github.com/fsspec/adlfs
83+ [ zfp ] : https://computing.llnl.gov/projects/zfp
0 commit comments