# Why I can't run datasets from RDatasets packages on my local machine?

**URL:** https://discourse.julialang.org/t/why-i-cant-run-datasets-from-rdatasets-packages-on-my-local-machine/89245
**Category:** Package Announcements
**Created:** [October 25, 2022, 12:22pm UTC](https://discourse.julialang.org/t/why-i-cant-run-datasets-from-rdatasets-packages-on-my-local-machine/89245 "2022-10-25T12:22:32Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![NunoEdgarGub1](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/nunoedgargub1/32/12330_2.png) [@NunoEdgarGub1](https://discourse.julialang.org/u/NunoEdgarGub1)
#### Post date: [October 25, 2022, 12:22pm UTC](https://discourse.julialang.org/t/why-i-cant-run-datasets-from-rdatasets-packages-on-my-local-machine/89245/1 "2022-10-25T12:22:32Z")

</div>

I am expereincing this error when running RDatasets package:

" cannot assign a value to variable Base.sleep from module Main

Stacktrace:  
[1] top-level scope  
@ In[3]:2  
[2] eval  
@ .\boot.jl:373 [inlined]  
[3] include\_string(mapexpr::typeof(REPL.softscope), mod::Module, code::String, filename::String)  
@ Base .\loading.jl:1196  
"

Anyone could hint as to the possible missing action I am not taking ? Thank you.

---

<div class="post-metadata">

### Author: ![juliohm](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/juliohm/32/215266_2.png) [@juliohm](https://discourse.julialang.org/u/juliohm)
#### Post date: [October 25, 2022, 12:32pm UTC](https://discourse.julialang.org/t/why-i-cant-run-datasets-from-rdatasets-packages-on-my-local-machine/89245/2 "2022-10-25T12:32:36Z")

</div>

The error seems unrelated to RDatasets.jl. You are probably trying to assign a value to the `sleep` variable name? The function `Base.sleep` is already defined in Julia and you can’t reassign the name to a variable. Please double check.
