简体   繁体   中英

Cabal fails updating of cabal-install

Every time I install a library, cabal tells me to install a new version of cabal-install. Despite the fact that i run (with apparent success) the procedure that list below, the version of cabal-install remains unchanged. Where I am going wrong? (My OS is Window 7 64-bits)

My User PATH is C:\\Users\\Alberto\\AppData\\Roaming\\cabal\\bin

System variables: CABAL_DIR = C:\\Users\\Alberto\\AppData\\Roaming\\cabal

BEFORE the update

C:\Users\Alberto>cabal -V
cabal-install version 1.16.0.2
using version 1.16.0 of the Cabal library

C:\Users\Alberto>cabal update
Downloading the latest package list from hackage.haskell.org
Note: there is a new version of cabal-install available.
To upgrade, run: cabal install cabal-install

C:\Users\Alberto>cabal install cabal-install

AFTER the update

Linking dist\build\cabal\cabal.exe ...
Installing executable(s) in C:\Users\Alberto\AppData\Roaming\cabal\bin
Installed cabal-install-1.18.0.2

C:\Users\Alberto>cabal -V
cabal-install version 1.16.0.2
using version 1.16.0 of the Cabal library

But:

C:\Users\Alberto>C:\Users\Alberto\AppData\Roaming\cabal\bin\cabal.exe -V
cabal-install version 1.18.0.2
using version 1.18.1.2 of the Cabal library

I am very confused about.

什么是C:\\Users\\Alberto\\AppData\\Roaming\\cabal\\bin\\cabal.exe -V

You probably just need to set your PATH to make sure that C:\\Users\\Alberto\\AppData\\Roaming\\cabal\\bin is at/near the beginning.

You can set this in "Control Panel" -> "System" -> "Advanced System Settings" -> "Advanced" -> "Environment Variables" and then edit the "User variables".

What is your $PATH ? It seems that you are using a cabal binary from somewhere else than C:\\Users\\Alberto\\AppData\\Roaming\\cabal\\bin , so that one continues to be used when you type cabal .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM