I tried installing PySide but it says it's not found.
(Tibra.jl) pkg> add PySide.jl
Updating registry at `~/.julia/registries/General.toml`
ERROR: The following package names could not be resolved:
* PySide (not found in project, manifest or registry)
(Tibra.jl) pkg> add PySide
ERROR: The following package names could not be resolved:
* PySide (not found in project, manifest or registry)
I just had the same problem like you. I think this package was discontinued.
Related
I am trying to install Playground in Julia 1.7.2 in order to make a virtual environment. However, when I go about julia> Pkg.add("Playground") the following error appears:
ERROR: The following package names could not be resolved:
* Playground (not found in project, manifest or registry)
I am not sure what is happening and how to properly resolve this issue in the most convenient way. Could it be a version incompatibility issue?
I'm trying to check a package with a dependency on a private repo stored on github that I'm specifying as a Remotes in the DESCRIPTION file. E.g.:
Imports:
dplyr,
....
Remotes:
geebioso/rpackage
I've already set the appropriate environment variables for installing from github and have checked that I can document and install my package locally using devtools (including the Remotes dependency).
When I run rcmdcheck::rcmdcheck() I get the following warning:
'::' or ':::' import not declared from: 'rpackage'
I'd like to get rid of this particular warning, but still keep error_on='warning' and check the Imports dependencies.
What's the correct way to handle this?
Thanks in advance!
When Trying to install Rackspace package (composer require rackspace/php-opencloud), getting the following error
Class 'Symfony\Component\EventDispatcher\Event' not found.
I have installed symfony package but that could not worked out.
Kindly help me out for this.
Try to install the required package
composer require symfony/event-dispatcher
I want to use a package I found online, but I get the following error:
(Example) pkg> add Unregistered
Updating registry at `~/.julia/registries/General`
Updating git-repo `https://github.com/JuliaRegistries/General.git`
ERROR: The following package names could not be resolved:
* Unregistered (not found in project, manifest or registry)
Please specify by known `name=uuid`.
I have seen others use the add command, but it does not seem to work in this case.
To add an unregistered package, refer to it by URL:
(Example) pkg> add https://github.com/00vareladavid/Unregistered.jl
Updating git-repo `https://github.com/00vareladavid/Unregistered.jl`
Updating git-repo `https://github.com/00vareladavid/Unregistered.jl`
Resolving package versions...
Updating `~/.julia/environments/Example/Project.toml`
[dcb67f36] + Unregistered v0.2.0 #master (https://github.com/00vareladavid/Unregistered.jl)
Updating `~/.julia/environments/Example/Manifest.toml`
[7876af07] + Example v0.5.3
[dcb67f36] + Unregistered v0.2.0 #master (https://github.com/00vareladavid/Unregistered.jl)
Pkg will automatically install its dependencies.
After you have added the package, you can use it normally:
julia> import Unregistered
[ Info: Precompiling Unregistered [dcb67f36-efa0-11e8-0cef-2fc465ed98ae]
Note: Packages must have a toplevel Project.toml file with name, UUID, and version fields.
I am having trouble adding some packages in Julia
This is one example, although I am finding many others:
julia> Pkg.add("QuartzImageIO.jl")
ERROR: The following package names could not be resolved:
* QuartzImageIO.jl (not found in project, manifest or registry)
Please specify by known `name=uuid`.
I believe this should work according to the docs
https://github.com/JuliaIO/QuartzImageIO.jl
and Plotly that required it
LoadError: ArgumentError: Package QuartzImageIO not found in current path:
- Run `import Pkg; Pkg.add("QuartzImageIO")` to install the
QuartzImageIO package.
I am new to Julia, am I doing something wrong?
Thanks
Peter
The .jl suffix is not part of the package name (although packages are often referenced with it included) . Try
using Pkg
Pkg.add("QuartzImageIO")
If you install JuliaPro then the packages that you can install are limited by what's been curated for JuliaPro. Installed the non-pro vanilla version and try again.