diff --git a/README.md b/README.md
index 54fa832..01c9009 100644
--- a/README.md
+++ b/README.md
@@ -26,13 +26,12 @@ This bash script helps you to install `Adobe Illustrator CC` on your Linux distr
2-make sure the following packages are already installed on your Linux distro
* `wine`
-* `aria2c`
* `md5sum`
if they are not already installed you can install them using your package manager for example in arch Linux
```bash
-sudo pacman -S wine aria2
+sudo pacman -S wine
```
3- make sure you have enough storage in your `/home` partition about `2 GiB`
> 400 MiB will be free after installation
@@ -87,6 +86,8 @@ chmod +x uninstaller.sh
```
---
-
+
+
+
\ No newline at end of file
diff --git a/scripts/illustratorSetup.sh b/scripts/illustratorSetup.sh
index c3a445c..cb6eb6c 100755
--- a/scripts/illustratorSetup.sh
+++ b/scripts/illustratorSetup.sh
@@ -9,7 +9,7 @@ function main() {
setup_log "================| script executed |================"
#make sure aria2c and wine package is already installed
- package_installed aria2c
+ # package_installed aria2c
package_installed wine
package_installed md5sum
diff --git a/scripts/sharedFuncs.sh b/scripts/sharedFuncs.sh
index 14ef75b..bd9fb67 100644
--- a/scripts/sharedFuncs.sh
+++ b/scripts/sharedFuncs.sh
@@ -183,7 +183,8 @@ function download_component() {
fi
else
show_message "downloading $4 ..."
- aria2c -c -x 8 -d $CACHE_PATH -o $4 $3
+ # aria2c -c -x 8 -d $CACHE_PATH -o $4 $3
+ wget $3 -P $CACHE_PATH
if [ $? -eq 0 ];then
notify-send "$4 download completed" -i "download"
fi