We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b0aba4 commit b63ab00Copy full SHA for b63ab00
src/IfSharp.Kernel/App.fs
@@ -244,11 +244,8 @@ module App =
244
IfSharpResources.ifsharp_32logo().Save(logo32File)
245
246
printfn "Installing dependencies via Paket"
247
- try
248
- let dependencies = Paket.Dependencies.Locate(System.IO.Path.GetDirectoryName(thisExecutable))
249
- dependencies.Install(false)
250
- with
251
- | ex -> printfn "Paket install failed, may be related to:%s\n%s" "https://github.com/fsprojects/Paket/issues/1918" ex.Message
+ let dependencies = Paket.Dependencies.Locate(System.IO.Path.GetDirectoryName(thisExecutable))
+ dependencies.Install(false)
252
253
/// Starts jupyter in the user's home directory
254
let StartJupyter () =
0 commit comments