Skip to content

Commit ab26ff0

Browse files
authored
Update README.md
1 parent e7f0b4c commit ab26ff0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@ The goal is to make all operations on sets feel intuitive and number like (simil
33

44
*********************Installation*********************
55
Ensure that Python is installed on your machine then run `pip install SetCalcPy`
6-
Invoke `import SetCalcPy` in your file or console!
6+
Invoke `from SetCalcPy import Set` in your file or python console!
77
Enjoy!
88

9+
Alternatively you can install the wheel file provided in this repository and run `pip install SetCalcPy-1.2.2-py3-none-any.whl` in command prompt
10+
(or the equivalent on your OS) from the directory you installed this in.
11+
912
*********************Simple Operations*********************
1013
+ Declare sets like so `A = Set(1,2,3)` and `B = Set(1,2,Set(3,4))
1114
+ Take the union of two sets (find all elements in `A` or `B`): `A + B`

0 commit comments

Comments
 (0)