@@ -107,33 +107,37 @@ This repository is organized as follows:
107107## Getting started
108108You need ** Python 3.10 or greater** .
109109
110- #### From Conda
110+ #### From PyPI
111+ To get the most out of PyProximal straight out of the box, we recommend using
112+ the PyPI distribution via ` uv ` :
111113
112- To get the most out of PyLops straight out of the box, we recommend ` conda ` to install PyLops:
113114``` bash
114- conda install -c conda-forge pyproximal
115+ uv pip install pyproximal
115116```
116117
117- #### From PyPI
118- You can also install pyproximal with ` pip ` :
118+ or directly via ` pip ` :
119+
119120``` bash
120121pip install pyproximal
121122```
122- or via ` uv ` :
123+
124+ #### From Conda
125+ You can also install PyProximal via ` conda ` :
126+
123127``` bash
124- uv pip install pyproximal
128+ conda install -c conda-forge pyproximal
125129```
126130
127131#### From Github
128- Finally, you can also directly install from the main branch (although this is not recommended):
132+ Finally, you can also directly install from the main branch (although this is not recommended) via ` uv ` :
129133
130- ```
131- pip install git+https://git@github.com/PyLops/pyproximal.git@main
132- ```
133- or via ` uv ` :
134134``` bash
135135uv add git+https://github.com/PyLops/pyproximal.git --branch main
136136```
137+ or via ` pip ` :
138+ ``` bash
139+ pip install git+https://git@github.com/PyLops/pyproximal.git@main
140+ ```
137141
138142## Contributing
139143* Feel like contributing to the project? Adding new operators or tutorial?*
@@ -150,8 +154,8 @@ Execute the following command in your terminal:
150154git clone https://github.com/your_name_here/pyproximal.git
151155```
152156
153- ### 2. Install PyLops in a new Conda environment
154- To ensure that further development of PyLops is performed within the same environment (i.e.,
157+ ### 2. Install PyProximal in a new Conda environment
158+ To ensure that further development of PyProximal is performed within the same environment (i.e.,
155159same dependencies) as that defined by `` environment-dev.yml `` /`` environment-dev-arm.yml `` files,
156160we suggest to work off a new Conda enviroment.
157161
0 commit comments